home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / DINKDEMO / DC_TEXTE / DTEDITAP.H < prev    next >
Text File  |  1992-07-07  |  407b  |  28 lines

  1. /*
  2.     File:        DTEditApp.h
  3.  
  4.     Written by:    Mark Gross
  5.  
  6.     Copyright:    ⌐ 1992 by Applied Technical Software, all rights reserved.
  7.     Use at your own risk.
  8.  
  9. */
  10.  
  11. // This is the class declaration for the DTEditApp subclass to 
  12. // DApp
  13.  
  14. #ifndef __DTEDITAPP__
  15. #define __DTEDITAPP__
  16.  
  17. #include"DApplication.h"
  18.  
  19. class DTEditApp : public DApplication
  20. {
  21. public:
  22.     virtual DDocument* MakeDDoc(Boolean OpenFromFile);
  23. };
  24.  
  25.  
  26. #endif 
  27.  
  28.